+ one CI run per pull request at a time - #119
Merged
Merged
Conversation
Pushing again while checks are running now supersedes them. Without it the superseded run kept a runner busy: a handful of quick force-pushes left a dozen doomed runs queued ahead of the one that mattered, and every other branch starved behind them. Pushes to main keep their own run — each commit there deserves a verdict.
Merging two writers whose references had been generated against an older main left the four package READMEs describing a main that no longer existed. The check runs on every pull request, so every pull request failed it, whatever it changed — this branch touches one workflow file and still failed.
Each package README says its full member list is in REFERENCE.md and links there. The four files were never committed, so the link went nowhere and the check that verifies them failed on every pull request, whatever it changed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pushing again while checks are running supersedes them.
Without this the superseded run keeps a runner busy. A handful of quick force-pushes left a dozen doomed runs queued ahead of the one that mattered, and every other branch starved behind them — which is how a few failures turned into hundreds of red builds.
Pushes to
mainare deliberately left alone: each commit there deserves its own verdict. Tag releases call this workflow throughworkflow_call, which is unaffected.